netsuite-js

EmployeeSearchBasic

declaration
EmployeeSearchBasic ->EmployeeSearchBasic

var EmployeeSearchBasic = module.exports = function EmployeeSearchBasic() {
  SearchRecord.call(this);
};

util.inherits(EmployeeSearchBasic, SearchRecord);

getAttributes

method
EmployeeSearchBasic.prototype.getAttributes()

@override

EmployeeSearchBasic.prototype.getAttributes = function() {
  var attrs = {
    'xsi:type': 'platformCommon:EmployeeSearchBasic'
  };

  return attrs;
};